/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1f2b3a;
  line-height: 1.5;
}

/* ===== COLOR PALETTE ===== */
:root {
  --primary: #0a3147;        /* deep navy – trust, medical */
  --primary-light: #1f4b6e;
  --secondary: #2f8e9e;      /* teal accent – health, fresh */
  --accent: #57b8c9;
  --light-bg: #f4f9fc;
  --gray-soft: #e6edf2;
  --text-dark: #122231;
  --text-muted: #3e5569;
  --white: #ffffff;
  --border-light: #cbd8e3;
}

/* ===== TYPOGRAPHY & LINKS ===== */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 2.8rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
h2:after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--secondary);
  margin-top: 0.5rem;
  border-radius: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,20,30,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: var(--primary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transform: rotate(10deg);
  transition: 0.2s;
}

.logo-text h1 {
  font-size: 1.7rem;
  margin: 0;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-links a {
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.nav-links a:hover {
  border-bottom-color: var(--secondary);
  color: var(--primary-light);
}

/* ===== HERO SECTION (CAREERS) ===== */
.hero-careers {
  background: linear-gradient(105deg, #e1f0fa 0%, #ffffff 70%);
  padding: 4rem 0 4.5rem;
  border-bottom: 1px solid #d9e5f0;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1 1 400px;
}
.hero-content .tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #0077b6;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 550px;
}
.hero-image {
  flex: 1 1 300px;
  background: #b3d8f0;
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 30px -10px rgba(0,60,100,0.25);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300" width="400" height="300"><rect width="400" height="300" fill="%23d2eafc" rx="20"/><circle cx="120" cy="130" r="40" fill="%23ffffff" opacity="0.5"/><circle cx="280" cy="180" r="60" fill="%23ffffff" opacity="0.4"/><path d="M90 200 L220 140 L310 220 L190 250 Z" fill="%23a2c8e8" opacity="0.6"/><text x="100" y="160" font-family="Arial" font-weight="bold" font-size="40" fill="%230077b6" opacity="0.8">+</text><text x="250" y="200" font-family="Arial" font-weight="bold" font-size="48" fill="%230a5c7e" opacity="0.7">⚕️</text></svg>');
  background-size: cover;
  min-height: 250px;
}

/* ===== MISSION BANNER ===== */
.mission-strip {
  background-color: #0a2e4a;
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.mission-strip p {
  color: #d9edff;
  font-size: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}
.mission-strip strong {
  color: white;
  font-weight: 600;
}

/* ===== OPEN POSITIONS SECTION (core careers content) ===== */
.positions {
  padding: 5rem 0;
  background: #ffffff;
}

.filter-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}
.filter-tag {
  background: #ecf3fa;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-weight: 500;
  color: #1a3b55;
  cursor: default;
  border: 1px solid transparent;
  transition: 0.1s;
}
.filter-tag.active {
  background: #0077b6;
  color: white;
  border-color: #0077b6;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.job-card {
  background: #f8fcff;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 12px 28px -8px rgba(0,70,120,0.12);
  border: 1px solid #e2edf9;
  transition: transform 0.15s ease, box-shadow 0.2s;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px -12px rgba(0,119,182,0.25);
  border-color: #b8d9f5;
}

.job-department {
  display: inline-block;
  background: #d1e5fc;
  color: #0a3f60;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  letter-spacing: 0.3px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.job-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
}
.job-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #4c6f8c;
  font-weight: 400;
  margin: 0.5rem 0 1rem;
}
.job-location::before {
  content: "📍";
  font-size: 1.1rem;
}
.job-type {
  display: inline-block;
  background: #e6f2fe;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0a4b70;
}
.job-desc {
  margin: 1.2rem 0 1.8rem;
  color: #305570;
}
.btn-apply {
  background: white;
  border: 2px solid #0077b6;
  padding: 0.7rem 2rem;
  border-radius: 60px;
  font-weight: 700;
  color: #0077b6;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  font-size: 1rem;
}
.btn-apply:hover {
  background: #0077b6;
  color: white;
  cursor: pointer;
}

/* ===== WHY JOIN US (BENEFITS) ===== */
.benefits {
  background: #eef5fa;
  padding: 5rem 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.benefit-item {
  background: white;
  border-radius: 32px;
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: 0 6px 16px #ddebf5;
}
.benefit-icon {
  background: #c7e2fb;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}
.benefit-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #0b3b5c;
}
.benefit-item p {
  margin-bottom: 0;
}

/* ===== TESTIMONIAL / CULTURE ===== */
.culture-quote {
  background: white;
  padding: 4rem 0;
  border-top: 1px solid #cbddee;
  border-bottom: 1px solid #cbddee;
}
.quote-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: #1a405b;
  background: #f0f8ff;
  padding: 3rem 3rem;
  border-radius: 60px 60px 60px 20px;
}
.quote-author {
  margin-top: 2rem;
  font-weight: 600;
  color: #0077b6;
}








.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-muted);
}






/* ===== CONTACT / FOOTER ===== */
.contact-bar {
  background: var(--primary);
  color: white;
  padding: 2.5rem 0;
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-flex h3 {
  color: white;
  font-size: 2rem;
}

.contact-info {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  font-size: 1.8rem;
  color: var(--accent);
}

.footer-bottom {
  background: #0b1e2b;
  color: #b0c9da;
  padding: 1.8rem 0;
  font-size: 0.95rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #d3e4f0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== UTILITIES ===== */
.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--primary);
  padding: 0.6rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-outline:hover {
  background: var(--secondary);
  color: white;
}

hr {
  border: none;
  border-top: 2px solid var(--border-light);
  margin: 2rem 0;
}

/* responsive tweaks */
@media (max-width: 700px) {
  h1 { font-size: 2.2rem; }
  .header-container { flex-direction: column; gap: 0.8rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}
